home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 7
/
Aminet 7 - August 1995.iso
/
Aminet
/
text
/
hyper
/
ADtoHT2_1.lha
/
Source.lha
/
MyLib.lha
/
string
/
strcmp.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1995-04-09
|
274 b
|
14 lines
#include <string.h>
/************************************************************************/
int (strcmp)(const char *String1, const char *String2)
{
#ifdef __GNUC__
return __inlined_strcmp(String1,String2);
#else
return __builtin_strcmp(String1,String2);
#endif
}